From: Wei Liu Date: Thu, 9 Jun 2016 12:57:41 +0000 (+0100) Subject: libxl: honour XEN_LOG_DIR X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~972 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22?a=commitdiff_plain;h=3bf5fdf8d8e688839907ec2065fe1f5de5fab35d;p=xen.git libxl: honour XEN_LOG_DIR Signed-off-by: Wei Liu Acked-by: Ian Jackson --- diff --git a/tools/libxl/libxl_utils.c b/tools/libxl/libxl_utils.c index 4ca6bcb692..6108d4bf5b 100644 --- a/tools/libxl/libxl_utils.c +++ b/tools/libxl/libxl_utils.c @@ -18,6 +18,7 @@ #include #include "libxl_internal.h" +#include "_paths.h" #ifndef LIBXL_HAVE_NONCONST_LIBXL_BASENAME_RETURN_VALUE const @@ -261,20 +262,20 @@ int libxl_create_logfile(libxl_ctx *ctx, const char *name, char **full_name) char *logfile, *logfile_new; int i, rc; - logfile = GCSPRINTF("/var/log/xen/%s.log", name); + logfile = GCSPRINTF(XEN_LOG_DIR "/%s.log", name); if (stat(logfile, &stat_buf) == 0) { /* file exists, rotate */ - logfile = GCSPRINTF("/var/log/xen/%s.log.10", name); + logfile = GCSPRINTF(XEN_LOG_DIR "/%s.log.10", name); unlink(logfile); for (i = 9; i > 0; i--) { - logfile = GCSPRINTF("/var/log/xen/%s.log.%d", name, i); - logfile_new = GCSPRINTF("/var/log/xen/%s.log.%d", name, i + 1); + logfile = GCSPRINTF(XEN_LOG_DIR "/%s.log.%d", name, i); + logfile_new = GCSPRINTF(XEN_LOG_DIR "/%s.log.%d", name, i + 1); rc = logrename(gc, logfile, logfile_new); if (rc) goto out; } - logfile = GCSPRINTF("/var/log/xen/%s.log", name); - logfile_new = GCSPRINTF("/var/log/xen/%s.log.1", name); + logfile = GCSPRINTF(XEN_LOG_DIR "/%s.log", name); + logfile_new = GCSPRINTF(XEN_LOG_DIR "/%s.log.1", name); rc = logrename(gc, logfile, logfile_new); if (rc)